home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 12
/
Cream of the Crop 12 (Part II)
/
Cream of the Crop 12 (Part II).iso
/
BBS
/
EZY120_1.ZIP
/
STRUCT.ARJ
/
CLIB.ARJ
/
RETMSG.CPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-03-09
|
308 b
|
14 lines
#include <stdio.h>
#include <ezylib.h>
char *GetMsgAreaPath(word MsgBoard,char *MsgAreaPath,int FileType)
{
char ftype;
if (FileType == 2)
ftype = 'T';
else
ftype = 'H';
sprintf(MsgAreaPath,"%sAREA%u\\M%c%05u.BBS",MsgPath,((MsgBoard-1) / 100)+1,ftype,MsgBoard);
return(MsgAreaPath);
}